reflect.MapIter.m (field)

16 uses

	reflect (current package)
		map_swiss.go#L247: 	m     Value
		map_swiss.go#L265: 	t := (*mapType)(unsafe.Pointer(iter.m.typ()))
		map_swiss.go#L267: 	return copyVal(ktype, iter.m.flag.ro()|flag(ktype.Kind()), iterkey)
		map_swiss.go#L290: 	t := (*mapType)(unsafe.Pointer(iter.m.typ()))
		map_swiss.go#L293: 	iter.m.mustBeExported() // do not let unexported m leak
		map_swiss.go#L294: 	key := Value{ktype, iterkey, iter.m.flag | flag(ktype.Kind()) | flagIndir}
		map_swiss.go#L309: 	t := (*mapType)(unsafe.Pointer(iter.m.typ()))
		map_swiss.go#L311: 	return copyVal(vtype, iter.m.flag.ro()|flag(vtype.Kind()), iterelem)
		map_swiss.go#L334: 	t := (*mapType)(unsafe.Pointer(iter.m.typ()))
		map_swiss.go#L337: 	iter.m.mustBeExported() // do not let unexported m leak
		map_swiss.go#L338: 	elem := Value{vtype, iterelem, iter.m.flag | flag(vtype.Kind()) | flagIndir}
		map_swiss.go#L347: 	if !iter.m.IsValid() {
		map_swiss.go#L351: 		t := (*mapType)(unsafe.Pointer(iter.m.typ()))
		map_swiss.go#L352: 		m := (*maps.Map)(iter.m.pointer())
		map_swiss.go#L371: 	iter.m = v
		map_swiss.go#L398: 	return &MapIter{m: v}